body {
    margin: 0;
    
    font-family: "Raleway", sans-serif;

  font-optical-sizing: auto;
  
  font-style: normal;
    background-color: rgb(244,245,255);
    overflow-x: hidden;
}



.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #b4b0b0;
    color: #fefefe;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}


.navbar {
    background-color: #fdfeff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    color: #060606;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  font-size: large;
    font-style: normal;

}

.navbar ul li a:hover {
    color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
    content: '\f0d7'; /* Font Awesome down arrow (caret) */
    font-family: 'Font Awesome 5 Free';
    
    font-weight: 900;
    margin-left: 0.5rem;
}

.navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fbfcfd;
    display: none;
    list-style: none;
    z-index: 998;
}

.navbar ul li:hover ul {
    display: block;
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem;
    width: 200px;
    text-align: left;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Keep this to stack items vertically */
        position: absolute;
        top: 70%;
        left: 0;
        background-color: #fdfefe;
        color: #000;
        width: 100%;
    
        display: none;
        z-index: 100;
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .navbar ul.active {
        display: flex;
        flex-direction: column; /* Ensure items stack vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .navbar ul li {
        width: 100%; /* Make each item full width */
    }

    .navbar ul li a {
        width: 100%; /* Make links full width for easier clicking */
        text-align: left; /* Align text to the left */
    }

    .navbar ul li ul {
        position: static; /* Ensure dropdowns are aligned properly */
    }

    .navbar ul li ul li a {
        padding: 0.5rem 1rem; /* Keep padding for dropdowns */
    }

    .menu-toggle {
        display: block;
    }
}





/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Green overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(78,90,246, 0.7); /* Semi-transparent green overlay */
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff4500;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Responsive Design */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}




@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content h1 {
        transform: translateY(-20px);
        font-size: 2.5em;
    }
    .hero-content p {
        transform: translateY(-20px);
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .hero{
        height: 30vh;
    }
    .hero-content h1 {
        transform: translateY(-40px);
        font-size: 2em;
    }
    .hero-content p {
        transform: translateY(-40px);
        font-size: 1.1em;
    }
    .hero-content button {
        transform: translateY(-40px);
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    
    .hero-content h1 {
        text-align: center;
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-content button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}


  

/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
   

    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event {
        max-width: 100%;
        max-height: 80%;
    }


}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
 
    .hero{
        margin-bottom: 270px;
    }
    .hero-section{
        height: 60vh;
        display: flex;  
        flex-direction: column;  
        justify-content: flex-start;
       
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-content {
        margin-top: 150px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 200px;
    }
    .a{
        margin-top: 40px;
    }
}







/* General Styles */
.upcoming-events {
    margin: 50px auto;
text-align: center;
padding: 20px;
width: 100%;
background-color: rgb(244, 245, 255);
}

/* Header Styles */
.upcoming-events h2 {
font-size: 2rem;
color: rgb(254, 74, 10);
margin-bottom: 1.5rem;
position: relative;
font-weight: 600;
font-family: "Raleway", sans-serif;

}

.upcoming-events h2::after {
content: "";
display: block;
width: 50px;
height: 3px;
background-color: #a6a6a6;
font-family: "Comfortaa", sans-serif;
margin: 0.5rem auto;
}

/* Events Container - Flexbox for Responsive Layout */
.events-container {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

/* Individual Event Cards */
.event {
background-color: white;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(7, 0, 0, 0.1);
max-width: 500px;
text-align: left;
width: 90%; /* Use percentage for responsive sizing */
flex: 1 1 calc(50% - 2rem); /* Flex-grow/shrink for responsiveness */
box-sizing: border-box; /* Ensures padding doesn't affect total width */
transition: transform 0.3s ease-in-out;
}

/* Responsive Images */
.event img {
width: 100%;
height: 300px;
border-radius: 10px;
transition: transform 0.3s ease-in-out;
}

/* Event Hover Effects */
.event:hover img {
transform: scale(1.1); /* Zoom in the image slightly on hover */
}

/* Text Styling */
.event h3 {
font-size: 1.5rem;
margin: 1rem 0;
color: rgb(254, 74, 10);
font-weight: 600;
font-family: "Raleway", sans-serif;

}

.event p {
color: #0d0d0d;
font-size: 1.5rem;
line-height: 1.6;
font-weight: 400;
font-family: "Raleway", sans-serif;

margin-bottom: 1.5rem;
}

/* Button Styling */

/* Section Break Line */
.section-breakk {
width: 45%;
height: 2px;
background-color: white;
border: none;
margin: 1rem auto;
margin-top: 45px;
margin-bottom: 30px;
}


/* Media query for tablets and smaller screens */
/* Base styles for the opportunities section */
/* Base styles for the opportunities section */
.opportunities-section {
 
text-align: center;
padding: 10px 20px;
margin: 20px auto;
background-color: rgb(244, 245, 255);
color: rgb(251, 249, 248);
}

/* Section title styling */
.opportunities-section h1 {
font-size: 2.5em;
margin-bottom: 20px;

color: rgb(254, 74, 10);
font-weight: 600;
font-family: "Raleway", sans-serif;

}

/* Section description styling */
.section-description {
margin: 40px 10px;
font-size: 1.2em;
color: #000;
}

/* Responsive grid container for the opportunity boxes */
.opportunities-grid {
    
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 50px;
max-width: 1200px;
margin: 0 auto;
padding: 0 10px;
}

/* Individual opportunity box styling */
.opportunity-box {
background: white;
color: #000;
padding: 20px;
border-radius: 10px;
width: 100%;
height: auto;
text-align: left;
transition: transform 0.4s ease;
position: relative;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: space-between;
}

/* Image inside the opportunity box */
.opportunity-box img {
width: 100%;
height: 50%;
border-radius: 10px;
margin-bottom: 15px;
object-fit: cover;
}

/* Opportunity box heading styling */
.opportunity-box h3 {
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  
margin: 10px 0;
font-size: 1.4em;
color: rgb(6, 6, 6);
}

/* Paragraph inside the opportunity box */
.opportunity-box p {
color: #090909;
font-size: 1.2em;
font-weight: 400;
font-family: "Raleway", sans-serif;

margin-bottom: 20px;
}

/* Button inside the opportunity box */

/* Media Queries for Responsiveness */

/* Small screens (up to 480px) */
@media (max-width: 480px) {
.opportunities-section {
padding: 20px 10px;
}

.opportunities-section h1 {
font-size: 2.2em;
margin-bottom: 15px;
}

.section-description {
font-size: 0.9em;
}

.opportunity-box {
padding: 15px;
}

.opportunity-box h3 {
font-size: 1.2em;
margin: 8px 0;
}

.opportunity-box p {
font-size: 0.85em;
}


}

/* Small screens (up to 576px) */
@media (max-width: 576px) {
.opportunities-section {
padding: 30px 10px;
}

.opportunities-section h1 {
font-size: 2rem;
margin-bottom: 15px;
}

.section-description {
font-size: 0.9em;
}

.opportunity-box {
padding: 15px;
height: auto;
}

.opportunity-box h3 {
font-size: 1.2em;
}

.opportunity-box p {

font-size: 0.9em;
}


}

/* Medium devices (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
.opportunities-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.opportunity-box {
height: 450px;
}
}

/* Large devices (769px and above) */
@media (min-width: 769px) {
.opportunities-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.opportunity-box {
height: 500px;
}
}





@media (max-width: 768px) {

    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/


    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event {
        max-width: 100%;
        max-height: 80%;
        display: flexbox;
    }


    .card {
        flex: 1 0 100%;
        padding: 10px;
    }
    
    .carousel-controls button {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
.events-container{
    background-size: cover;
}
}










@media (max-width: 1020px) {

    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/


    .events-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        max-height: 80%;
    }

    .event {
        max-width: 100%;
        max-height: 80%;
    }


    .card {
        flex: 1 0 100%;
        padding: 10px;
    }
    
    .carousel-controls button {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
.events-container{
    background-size: cover;
}
}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
 
    .a{
        margin-top: 40px;
    }
    .event {
        width: 80%;
        height: 50%;
    }

    .event-img {
        width: 50%;
        height: 30%;
    }

    .upcoming-events{
        background-size: cover;
    }

    .upcoming-events h2 {
        font-size: 1.5rem;
    }

    .event h3 {
        font-size: 1.2rem;
    }

    .learn-more {
        font-size: 0.8rem;
    }

.testimonials{
    
  place-items: center; /* centers both horizontally and vertically */
  height: 50vh;
}

    
    .testimonials h2 {
        font-size: 1.5rem;
    }

    .card img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .card blockquote {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .card footer {
        font-size: 0.8rem;
    }

    .carousel-controls button {
        font-size: 1rem;
        padding: 6px 12px;
    }
    .events-container{
        background-size: cover;
    }

}



/* Services Section */
.leistungen {
    text-align: center;
    padding: 50px 5%;
    margin-bottom: 60px;
    background-color:rgb(244,245,255);
}

.leistungen h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color:rgb(254, 74, 10);
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  
}

.leistungen-description {
    font-size: 1.1rem;
    color: #040404;
    margin-bottom: 30px;
}

.leistungen-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.leistung-item {
    background-color:#4e5af6;
   
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease;
}

.leistung-item:hover {
    transform: translateY(-10px);
}

.leistung-item .icon {
    margin-bottom: 15px;
}

.leistung-item img {
    width: 50px;
    height: 50px;
}

.leistung-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
  
    color: #fff;
}

.leistung-item p {
    font-size: 1rem;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
    color: #f8f5f5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .leistungen-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .leistung-item {
        width: 100%;
    }

    .leistungen h2 {
        font-size: 1.5rem;
    }

    .leistungen-description {
        font-size: 1rem;
    }
}



/* Basic styling for the careers section */
.careers {
background-color:rgb(254,74,10);
color: #fdfcfc; 
;
margin-bottom: 10%;
margin-top: 10%;/* Light background color for better readability */
padding: 20px; /* Default padding */
text-align: center; /* Center-align the content */
}

.careers p{
color: #fefdfd;
font-weight: 400;
font-family: "Raleway", sans-serif;

}

/* Content container within the careers section */
.careers .content {
max-width: 800px; /* Limit max width for better readability */
margin: 0 auto; /* Center the content horizontally */
padding: 10px 20px; /* Add some padding for internal spacing */
}

/* Paragraph styling for better text appearance */
.careers p {
    font-family: "Roboto Flex", sans-serif;
font-size: 26px; /* Default font size */
line-height: 1.6; /* Comfortable line height for readability */
color: #fcfcfc;
font-weight: 400;
font-family: "Raleway", sans-serif;
 /* Dark color for contrast */
}

/* Button styling for contact */
.view-careers-btn {
display: inline-block; /* Display as block for easier alignment */
margin-top: 15px; /* Space above the button */
padding: 10px 20px; /* Button padding */
font-size: 16px; /* Button text size */
color: #fff; /* Text color */
background-color: #4e5af6; /* Primary color */
border: none; /* No borders */
border-radius: 25px; /* Rounded corners */
text-decoration: none; /* Remove underline */
transition: background-color 0.3s ease; /* Smooth transition on hover */
}

/* Button hover effect */
.view-careers-btn:hover {
background-color: #0056b3; /* Darker shade on hover */
}

/* Responsive adjustments for tablets and smaller devices */
@media (max-width: 768px) {
.careers {
padding: 15px; /* Reduce padding for smaller screens */
}

.careers p {
font-size: 14px; /* Adjust text size for better fit */
}

.view-careers-btn {
font-size: 14px; /* Adjust button text size */
padding: 8px 16px; /* Adjust padding for smaller buttons */
}
}

/* Further adjustments for small mobile screens */
@media (max-width: 480px) {
.careers .content {
padding: 10px; /* Further reduce padding */
}

.careers p {
font-size: 13px; /* Smaller text size for tiny screens */
}

.view-careers-btn {
font-size: 13px; /* Button font size adjustment */
padding: 8px 14px; /* Narrow padding for small screens */
}
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem; /* Base font size */
    color: white;
    width: auto;
    background-color: #ff4500; /* Tomato color */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, font-size 0.3s ease; /* Smooth transition */
    font-family: "Raleway", sans-serif; /* Add a modern font */
}

/* Hover Effect */
.learn-more:hover {
    background-color: #ff4500; /* Darker tomato color */
}

/* Responsiveness */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .learn-more {
        min-width: 100px;
        font-size: 1rem; /* Decrease font size for tablets */
        padding: 8px 16px; /* Adjust padding */
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .learn-more {
        font-size: 0.9rem; /* Even smaller font size for mobile */
        padding: 6px 12px; /* Reduce padding further for mobile */
    }
}




/* General button styling */
.learn-moree {
    display: inline-block;
    background-color: rgb(254, 74, 10); /* Button background color */
    color: white; /* Button text color */
    padding: 12px 24px; /* Padding for desktop */
    font-size: 18px; /* Font size for desktop */
    border-radius: 4px; /* Rounded corners */
    text-decoration: none; /* Remove underline from link */
    text-align: center;
    width: 100px; /* Set width for the button */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for hover effects */
}

/* Hover effect */
.learn-moree:hover {
    background-color: rgb(230, 60, 10); /* Darker shade on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

/* Responsive adjustments for tablets */
@media (max-width: 1024px) {
    .learn-moree {
        font-size: 15px; /* Slightly smaller font for tablets */
        padding: 10px 20px; /* Adjust padding for tablets */
        width: 130px; /* Adjust button width for tablets */
    }
}

/* Responsive adjustments for mobile devices (larger smartphones, iPad portrait) */
@media (max-width: 768px) {
    .learn-moree {
        font-size: 14px; /* Smaller font for mobile */
        padding: 8px 16px; /* Adjust padding for mobile */
        width: 120px; /* Reduce width for mobile */
    }
}

/* Responsive adjustments for small mobile devices */
@media (max-width: 480px) {
    .learn-moree {
        font-size: 12px; /* Smaller font for small screens */
        padding: 6px 12px; /* Smaller padding for small screens */
        width: 100px; /* Reduce width for small screens */
    }
}



